This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
i meant the OutOfOfficeProfile profile document in the users mail file.
seeing as its showing up with tell router o then the server is setup for ooo as a service and its enabled in the profile document thats being found.
when running as a service the ooo is processed by the router task (thus the tell router o)
if its disabled in the client then its picking up another version of the profile document. sometimes youll notice that the hours field is missing when it should be there for ooo service. personally id just delete the thing.
normally when the server is setup as a service the router replies instantly if the ooo is enabled, and stops instantly when its disabled. thats why they added the service type.
if want to delete a profile document, you can use this code, just put it in a button (i usually have this sitting in stationary so its easy to access), then copy that button, create a new memo in the users mail file, paste the button, then click on it (multiple times in this case to pickup conflicts, it wont hurt).
Dim ses As New notessession
Dim ws As New NotesUIWorkspace
dim p as String
p = ws.Prompt(4, "Select a Profile to Remove", "Profile", "", Split("CalendarProfile,DelegationProfile,OutOfOfficeProfile,Archive Profile,Archive Database Profile,iNotesProfile,holidayprofile", ","))
If p <> "" Then
Set doc = ses.CurrentDatabase.GetProfileDocument(p)
doc.Remove True
Print p " has been removed"
End If
Feedback response number WEBB8X87ED created by ~Lisa Brejipytherettu on 08/16/2012